home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / dpmigcc5.zip / RSX / SOURCE / DJLIBRSX / RAISE.S < prev    next >
Text File  |  1994-05-27  |  167b  |  12 lines

  1. /    int raise ( int signal )
  2.  
  3.     .globl    _raise
  4. _raise:
  5.     movl    4(%esp), %ecx
  6.     movw    $0x7f0e, %ax
  7.         int     $0x21
  8.     jecxz    1f
  9.     movl    %ecx, _errno
  10. 1:
  11.         ret
  12.